home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjinet11.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  896 b   |  33 lines

  1. // Design Time Java Socket implementation. (HPP)
  2.  
  3. #ifndef _DTJINET11_HPP
  4. #define _DTJINET11_HPP
  5.  
  6. #include "dtjobjct11.hpp"
  7.                       
  8. class METAEXPORTCLASSDEF DTJInternet11 : public DTJObject11
  9. {
  10.     public:
  11.         DTJInternet11( const MetaObject * pMetaObj );
  12.         virtual ~DTJInternet11();
  13.         
  14.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  15.                    ostream& src,
  16.                    MMCodeGenerationParms& parms );
  17.                                   
  18.         virtual WBool SetServerPort( WLong port );
  19.         
  20.         virtual WLong GetServerPort() const;
  21.         
  22.     protected:
  23.     
  24.         WLong _server_port;
  25. };
  26.  
  27. extern WBool METAEXPORTDEF DP_JInetServerPort( const DTObject *, const MMBaseProperty * );
  28.  
  29. // needed for mdreader
  30. typedef DTJInternet11 DTpowersoft__dot__powerj__dot__net__dot__Internet__dot__11;
  31.  
  32. #endif // _DTJINET11_HPP
  33.